home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1993…ch: Other People's Memory / ADC Developer CD (1993-03) (''Other People's Memory'')_iso / Dev.CD Mar 93.iso / Technical Documentation / Sample Code / DTS.Lib & Samples / Kibitz / view.cdef.a < prev    next >
Encoding:
Text File  |  1992-10-22  |  438 b   |  30 lines  |  [TEXT/MPS ]

  1.         include    'traps.a'
  2. ;
  3. ; Apple Macintosh Developer Technical Support
  4. ;
  5. ; File:        ViewCtl.a
  6. ; Written by:  Eric Soldan
  7. ;
  8. ; Copyright © 1990-1992 Apple Computer, Inc.
  9. ; All rights reserved.
  10. ;
  11. ;
  12.  
  13.         case    on
  14.  
  15.         seg    'ViewCtl'
  16. jmpInstruction    PROC
  17.         import    elsewhere:Code
  18.  
  19.         jsr    mayBreak
  20.         movea.l    procPtr,A0
  21.         jmp    (A0)
  22. procPtr        dc.l    0
  23. mayBreak        rts        ;Put a _Debugger statement in front
  24.                 ;of the rts if you need to break.
  25.  
  26.         ENDP
  27.  
  28.         END 
  29.  
  30.